/** * This file was auto-generated by Fern from our API Definition. */ import * as Skyflow from "../../../../index"; /** * @example * { * vault_id: "f4b3b3b33b3b3b3b3b3b3b3b3b3b3b3b", * file: { * base64: "SGkgaSBhbSBEZXZhbnNodSwgbGl2...aW5nIGluIGNhbGlmb3JuaWEuIA==", * data_format: "json" * } * } * * @example * { * vault_id: "VAULT_ID", * file: { * base64: "BASE64_DATA", * data_format: "json" * } * } */ export interface DeidentifyStructuredTextRequest { vault_id: Skyflow.VaultId; /** File to de-identify. Files are specified as Base64-encoded data. */ file: Skyflow.DeidentifyStructuredTextRequestFile; configuration_id?: Skyflow.ConfigurationId; entity_types?: Skyflow.EntityTypes; token_type?: Skyflow.TokenTypeWithoutVault; allow_regex?: Skyflow.AllowRegex; restrict_regex?: Skyflow.RestrictRegex; transformations?: Skyflow.Transformations; }